home *** CD-ROM | disk | FTP | other *** search
- <SCRIPT LANGUAGE="JavaScript">
- <!-- // HIDE FROM OLD BROWSERS
-
- // THIS WILL WRITE OUT THE LAST MODIFIED DATE
- // YOU DO NOT NEED TO CHANGE ANYTHING HERE
-
- function makeArray(arraySize) {
- this.length = arraySize
- return this
- }
-
- monthNames = new makeArray(12)
- monthNames[1] = "January"
- monthNames[2] = "February"
- monthNames[3] = "March"
- monthNames[4] = "April"
- monthNames[5] = "May"
- monthNames[6] = "June"
- monthNames[7] = "July"
- monthNames[8] = "August"
- monthNames[9] = "September"
- monthNames[10] = "October"
- monthNames[11] = "November"
- monthNames[12] = "December"
-
- updated = new Date(document.lastModified)
- theMonth = monthNames[updated.getMonth() + 1]
- theDate = updated.getDate()
- theYear = updated.getYear()
- if ( theYear < 98 ) {theYear = theYear + 2000 } else {theYear = theYear + 1900 };
-
- document.write("Last modified: " + theDate + "-" + theMonth + "-" + theYear)
-
- // END HIDING -->
- </SCRIPT>
-